home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
EnigmA Amiga Run 1996 June
/
EnigmA AMIGA RUN 08 (1996)(G.R. Edizioni)(IT)[!][issue 1996-06][EARSAN CD VII].iso
/
earcd
/
c-lang
/
strmc105.lha
/
StormC-Demo
/
INCLUDE
/
clib
/
macros.h
< prev
next >
Wrap
C/C++ Source or Header
|
1994-03-15
|
351b
|
18 lines
#ifndef CLIB_MACROS_H
#define CLIB_MACROS_H
/*
** $VER: macros.h 36.0 (30.11.90)
** Includes Release 40.15
**
** C prototypes
**
** (C) Copyright 1990-1993 Commodore-Amiga, Inc.
** All Rights Reserved
*/
#define MAX(a,b) ((a)>(b)?(a):(b))
#define MIN(a,b) ((a)<(b)?(a):(b))
#define ABS(x) ((x<0)?(-(x)):(x))
#endif /* CLIB_MACROS_H */